In [2]:
lc_data = pd.DataFrame.from_csv('./lc_dataframe(cleaning).csv')
lc_data = lc_data.reset_index()
lc_data.tail()
Out[2]:
In [28]:
x = lc_data['grade']
sns.distplot(x, color = 'r')
plt.show()
In [30]:
x = lc_data['sub_grade']
sns.distplot(x, color = 'g')
plt.show()
In [32]:
x = lc_data['emp_title']
plt.hist(x)
plt.show()
In [33]:
x = lc_data['emp_length']
sns.distplot(x, color = 'r')
plt.show()
In [34]:
x = lc_data['home_ownership']
sns.distplot(x, color = 'g')
plt.show()
In [35]:
x = lc_data['verification_status']
sns.distplot(x)
plt.show()
In [36]:
x = lc_data['issue_d']
sns.distplot(x, color = 'r')
plt.show()
In [37]:
x = lc_data['purpose']
sns.distplot(x, color = 'g')
plt.show()
In [39]:
x = lc_data['initial_list_status']
plt.hist(x)
plt.show()